function find_zip(zip, city)
{
    $.get(  
        "../../ajax/postcode.php",  
        {rnd: Math.floor(Math.random()*9999), zip: escape(zip), city: escape(city)},
        function(responseText){  
            $("#pcs").html(responseText);  
        },  
        "html"  
    );
}
