function loadurl(dest) {
	try {
		xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
	}
   catch (e) { /* do nothing */ }
	
	xmlhttp.onreadystatechange = triggered;
	var destination = dest + document.getElementById("nazione_ajax").options[document.getElementById("nazione_ajax").selectedIndex].value;
	//alert ("destination is:"+destination);
	xmlhttp.open("GET", destination);
	xmlhttp.send(null);
}

function triggered() {
	if (xmlhttp.readyState == 4)
		if (xmlhttp.status == 200)
			document.getElementById("output_nazione_ajax").innerHTML =xmlhttp.responseText;
}


function loadurl2(dest) {
	try {
		xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP");
	}
   catch (e) { /* do nothing */ }
	
	//alert ("destination is:"+destination);
	xmlhttp.open("GET", dest);
	xmlhttp.send(null);
}


