function showcategory111(strid1)
{ 
//alert(strid1);
	xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert("Browser does not support HTTP Request")
		return
	} 
var url="query_colleage.php"
	url=url+"?cosoid="+strid1
	url=url+"&sid="+Math.random()
	//alert(url);
	xmlHttp.onreadystatechange=stateChanged6ss1 
	xmlHttp.open("GET",url,true)
	xmlHttp.send(null)
}
function stateChanged6ss1() 
{ 
	if(xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){ 
		document.getElementById("scomcoso").innerHTML=xmlHttp.responseText 
	} 
}
