<!-- Begin
function comchooser1(fun) {
 n1 = document.CHOOSER.A_REGIONE.selectedIndex
 r = document.CHOOSER.A_REGIONE.options[n1].value
 n2 = document.CHOOSER.A_PROVINCIA.selectedIndex
 p = document.CHOOSER.A_PROVINCIA.options[n2].value
 document.location=fun + "&A_REGIONE=" + r + "&A_PROVINCIA=" + p
 return true;
}
//  End -->