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;
}

function get_district_localities(id_district){
	xmlHttp = GetXmlHttpObject();
	if(xmlHttp == null){
		alert ("Browser does not support HTTP Request!");
		return;
	}
	
	var url = "ajax-district-localities.php?id_district=" + id_district;
	
	xmlHttp.open("GET", url, true);
	
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4 || xmlHttp.readyState == "complete"){
			element = document.getElementById('div-districts');
			if(element != null){
				element.innerHTML = xmlHttp.responseText;
			}
		}
	}
	
	xmlHttp.send(null);
}

