var xmlHttp

function Country(str)
{ 
xmlHttp=GetXmlHttpObject();
if (xmlHttp==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url="http://www.singlevegetarians.com/country.php";
url=url+"?q="+str;
url=url+"&sid="+Math.random();
xmlHttp.onreadystatechange=stateChangedcountry;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);
}

function stateChangedcountry() 
{ 
if (xmlHttp.readyState==4)
{ 
document.getElementById("countyshow").innerHTML=xmlHttp.responseText;
}
}

function stateChangedcity(str) 
{ 
if (xmlHttp.readyState==4 && str==2)
{ 
document.getElementById("city").innerHTML='<p class="lables"><strong>Zip Code :</strong>';
}
}

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;
}
