
 function ricaricaProvince(idProvincia){

    document.getElementById(idobject).options.length = 0;
    document.getElementById(idobject).options[0] = new Option('Caricamento...','');
    caricaProv = new ajax();
    caricaProv.Carica('get', '/ajax/set_province_xml.asp?idregione=' + idProvincia, 'ricaricaProvince_ok')
    }
    
  function ricaricaProvince_ok(){
   var nomeProv;
    numeroProvince = lunghezza('option');
    var i = 0;
   // document.getElementById(idobject).options[0] = new Option('indifferente','');
    while (i < numeroProvince){
      nomeProv = LoadVal('option',i);
      if (nomeProv != 'non definito' && nomeProv != '' && typeof(nomeProv) != 'undefined') {
        document.getElementById(idobject).options[i] = new Option(nomeProv, nomeProv);
        }
      i++;
      }
    }

