/* CONTACT US FUNCTIONS
-----------------------------------------------------*/

function updateZip(query){
	var url = '/ajax-get-data.php';
	var myAjax = new Ajax( url, { method:'get', postBody:'mode=zip&q='+query, onSuccess: updateInput }).request();
}
function updateInput(res){
	document.forms[0].city.value = res;		
}

window.addEvent('domready', function() {
//	document.forms[0].city.disabled = 'disabled';
//  we need this to be readonly, not disabled
});