function cambiaProvincia(value){
    jQuery.getJSON('index.php?action=ajaxCaricaComuni&idProvincia='+value+'&time='+(new Date()).getTime(),parseComuni);
}
function parseComuni(data){
    var select=document.getElementById("comuni");
    while (select.options.length) {
        select.remove(0);
    }
    for(var i=0;i<data.numcomuni;i++){
        var newElem = document.createElement("option");
        newElem.text = ""+data.comuni[i].denominazione;
        newElem.value = ""+data.comuni[i].istat;
        try {
            select.add(newElem, null); // standards compliant; doesn't work in IE
        }
        catch(ex) {
            select.add(newElem); // IE only
        }
    }
}
