function getHTTPObject()
{
	// code for Mozilla, etc.
	if (window.XMLHttpRequest)
  	{
  		xmlhttp=new XMLHttpRequest()
  	}
// code for IE
	else if (window.ActiveXObject)
  	{
  		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  	}
	return xmlhttp;
}
var ajax = getHTTPObject();
function TalukaCombo1()
{	
	if(ajax.readyState == 4)
	{
		var respons = ajax.responseText;
		document.getElementById('CointList_dist').innerHTML = respons;
	}
}

function SelTaluka(id)
{

	ajax.open("GET","ajaxDist.php?conid_dist="+id);
	
ajax.onreadystatechange = TalukaCombo1;
	ajax.send(null);
}

