var xmlHttp;
function showSearchBoxCity(my_state_id)
{ 
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
 document.getElementById("my_city_id_1").disabled=true;
var url="http://busneeds.com/getSearchBoxCity.php"
url=url+"?my_state_id="+my_state_id+"&type=B&sid="+Math.random()
xmlHttp.open("GET",url,true)
xmlHttp.onreadystatechange=stateSearchBoxMoved 
xmlHttp.send(null)
}
function stateSearchBoxMoved() 
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
 { 
document.getElementById("search_box_city_div").innerHTML=xmlHttp.responseText 
document.getElementById("my_city_id_1").disabled=false;
 } 
}
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;
}
//limo code starts here
var xmlHttp3;
function showSearchBoxCity3(my_state_id)
{ 
xmlHttp3=GetXmlHttpObject3()
if (xmlHttp3==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
 document.getElementById("my_city_id_3").disabled=true;
var url="http://busneeds.com/getSearchBoxCity.php"
url=url+"?my_state_id="+my_state_id+"&type=L&sid="+Math.random()
xmlHttp3.open("GET",url,true)
xmlHttp3.onreadystatechange=stateSearchBoxMoved3 
xmlHttp3.send(null)
}
function stateSearchBoxMoved3() 
{ 
if (xmlHttp3.readyState==4 || xmlHttp3.readyState=="complete")
 { 
document.getElementById("search_box_city_div3").innerHTML=xmlHttp3.responseText 
document.getElementById("my_city_id_3").disabled=false;
 } 
}
function GetXmlHttpObject3()
{
var xmlHttp3=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp3=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp3=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp3=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp3;
}