{
	jQuery(document).ready(function() 
	{
		jQuery("#zip").bind("keyup", function(e) 
		{
			var zip = jQuery("#zip").val();
			if (zip.length > 0)
			{
				jQuery("#result").load(BASE + "contact.php?p=" + zip);
			}
			else
			{
				jQuery("#result").html("");
			}
		});
	});
}
