
function findzip_request(){
	param = 'zip='+document.exampleForm.zipcode.value;
	http( 'POST' , '/actions.cfc?method=findZipCode' , findzip_response , param ); 
}
function findzip_response(obj){ 
	document.getElementById('city').innerHTML = obj.city;
	document.getElementById('state').innerHTML = obj.state;
}