function getPostalCodeList(strInput, city)
{
	if(strInput.length == 0)
	{
		$('#postalCodeBox').hide();
	}
	else
	{
		$.post("/gc/ajax/postalCode.php", {postalCode: ""+strInput+"", city: ""+city+""}, function(data){
			if(data.length >0)
			{
				$('#postalCodeBox').show();
				$('#postalCodeList').html(data);
			}
		});
	}
}
	
function getPostalCode(value)
{
	$('#postalCode').val(value);
	
	setTimeout("$('#postalCodeBox').hide();", 200);
}
