var xmlHttp


function GetXmlHttpObject()
{
var xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp;
}


function showMetroDropdown(str)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
var url="get-citydropdown.php"
url=url+"?sid="+str
xmlHttp.onreadystatechange=CityChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function CityChanged() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 {
 document.getElementById("CITYdivID").innerHTML=xmlHttp.responseText 
 } 
}

function showCityDropdown(str)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
var url="get-citydropdown.php"
url=url+"?sid="+str
xmlHttp.onreadystatechange=Advanced_CityChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function Advanced_CityChanged() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 {
 document.getElementById("CITYdivID1").innerHTML=xmlHttp.responseText 
 } 
}


function showCityDropdown1(str)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 } 
var url="aget-citydropdown.php"
url=url+"?s=1&sid="+str
xmlHttp.onreadystatechange=Advanced_CityChanged 
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}

function Advanced_CityChanged() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 {
 document.getElementById("CITYdivID1").innerHTML=xmlHttp.responseText 
 } 
}
