
	var changeComune = function(id){
		dojo.xhrPost({
			url: "/requests/comuni.php",
			handleAs: "xml",
			postData: "p=" + id,
			handle: function(data,args){
				if(typeof data == "error"){
					console.warn("error!");
					console.log(args);
				}else{
					explodeComuni(data);
				}
			}
		});
	};
	
	var explodeComuni = function (data) {
		var collection = data.documentElement.getElementsByTagName("rs");
		var countComuni = collection.length;
		if(countComuni) {
			var oSelC = document.getElementById("divComune");
			if(oSelC) {
				/*strOption = '<option value="">Seleziona</option>';*/
				strOption = '';
				
				for (var i = 0; i < countComuni; i++) {
					strOption += '<option value="' + collection[i].getAttribute("id") + '">' + collection[i].getAttribute("nome") + '</option>';
				}
				oSelC.innerHTML = '<select id="comune" name="comune" class="selectForm">' + strOption + '</select>';
			}
		}
	}
