function changeCity(){
var ct= document.getElementById('newCountry').value;
var CountryObj = document.getElementById("newCountry");
var cityTxt = CountryObj.options[CountryObj.selectedIndex].value;
//alert(cityTxt);
//alert(ct);
var xmlhttp;
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
    try{xmlhttp=new XMLHttpRequest();  }
	catch(e)
	{
	//alert("Doing For First Select Case");
		try{xmlhttp= new ActiveXObject("Microsoft.XMLHTTP");   }
		catch(e1)
		{
			//alert("Doing Second Case");
			try{
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
				}
				catch(e2){
					//alert("Doing Second Case");
					xmlhttp=false;
				}
		}
	}
  }
else
  {// code for IE6, IE5
  	try{			
				xmlhttp= new ActiveXObject('Microsoft.XMLHTTP');
		}
		catch(e){
			try{
				xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
			}
				catch(e1){
				xmlhttp=false;
			}
		}
  }
xmlhttp.onreadystatechange=function()
  {
      if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
	//alert(xmlhttp.responseText);
    document.getElementById("newCity1").innerHTML=xmlhttp.responseText;
    }
	else
	{
  //alert("There was a problem while using        XMLHTTP:\n" +xmlhttp.responseText);
	}
  }
xmlhttp.open("GET","proc_selcCity.php?cty="+cityTxt,true);
xmlhttp.send(null);
};
