// JavaScript Document
function Data(ville, commune)
{
	if(document.all){var XhrObj = new ActiveXObject("Microsoft.XMLHTTP");}else{var XhrObj = new XMLHttpRequest();}
	var content = document.getElementById('ville');
	if(ville == 'null'){XhrObj.open("GET", 'inc/reqville.php');}
	else{XhrObj.open("GET", "inc/reqville.php?id="+ville+"&commune="+commune);}
	XhrObj.onreadystatechange = function(){if(XhrObj.readyState == 4 && XhrObj.status == 200){content.innerHTML = XhrObj.responseText; }}    
	XhrObj.send(null);
}


