function showcategory11(strid)
{ 
//alert(strid);
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert("Browser does not support HTTP Request")
		return
	} 
var url="query_state.php"
	url=url+"?statetid="+strid
	url=url+"&sid="+Math.random()
	//alert(url);
	xmlHttp.onreadystatechange=stateChanged6ss 
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
}
function stateChanged6ss() 
{ 
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 
		document.getElementById("scomcity").innerHTML=xmlHttp.responseText 
	} 
}
