// JavaScript Document
function getRegioniList(idstato){
	makeRequestGet('include/module_ajax.php?action=combo_regioni&idstato='+idstato);
	http_request.onreadystatechange = show_regioni_list;
}
function getProvinceList(idstato){
	makeRequestGet('include/module_ajax.php?action=combo_province&idstato='+idstato);
	http_request.onreadystatechange = show_province_list;
}
function show_regioni_list(){
	if (http_request.readyState == 4) {
		if (http_request.status == 200) {		
			document.getElementById('regioni_select').innerHTML = http_request.responseText;
		} else {
			alert('There was a problem with the request.');
		}
	}
}
function show_province_list(){
	if (http_request.readyState == 4) {
		if (http_request.status == 200) {		
			document.getElementById('province_select').innerHTML = http_request.responseText;
		} else {
			alert('There was a problem with the request.');
		}
	}
}
