GIF89a php
Current File : /home/hencockfreshchic/public_html/js/placeCity.js
function placeCity(){

	var user_state=$("#user_state").val();
  if(user_state==""){
    alert("Please select state");
    $("#user_state").focus();
    return false;
  }

  if (window.XMLHttpRequest) {
            // code for IE7+, Firefox, Chrome, Opera, Safari
            xmlhttp = new XMLHttpRequest();
        } else {
            // code for IE6, IE5
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
  xmlhttp.onreadystatechange=function() 
   {
    if (this.readyState==4 && this.status==200) 
  {
      document.getElementById("loadCity1").innerHTML=this.responseText;
  }
  };
  xmlhttp.open("GET","loadCity.php?user_state="+user_state,true);
  xmlhttp.send(); 
}