<!--
function calcolatotale() {
var a = document.ilform.Adulticamera1.options[document.ilform.Adulticamera1.selectedIndex].text;
var b = document.ilform.Bambini.options[document.ilform.Bambini.selectedIndex].text;
var totcam1 = ((+a)+(+b));

var c = document.ilform.Adulticamera2.options[document.ilform.Adulticamera2.selectedIndex].text;
var d = document.ilform.Bambinicamera2.options[document.ilform.Bambinicamera2.selectedIndex].text;
var totcam2 = ((+c)+(+d));

var e = document.ilform.Adulticamera3.options[document.ilform.Adulticamera3.selectedIndex].text;
var f = document.ilform.Bambinicamera3.options[document.ilform.Bambinicamera3.selectedIndex].text;
var totcam3 = ((+e)+(+f));

var g = document.ilform.Adulticamera4.options[document.ilform.Adulticamera4.selectedIndex].text;
var h = document.ilform.Bambinicamera4.options[document.ilform.Bambinicamera4.selectedIndex].text;
var totcam4 = ((+g)+(+h));

document.ilform.camer1totpx.value=totcam1;
document.ilform.camer2totpx.value=totcam2;
document.ilform.camer3totpx.value=totcam3;
document.ilform.camer4totpx.value=totcam4;
document.ilform.per.value=totcam1 + totcam2 + totcam3 + totcam4;

}

function cancella() {

document.ilform.camer1totpx.value= parseFloat(c).toFixed(2).replace('.',',');
document.ilform.Adulticamera1.selectedIndex=0;
document.ilform.Bambini.selectedIndex=0;

document.ilform.camer2totpx.value= parseFloat(c).toFixed(2).replace('.',',');
document.ilform.Adulticamera2.selectedIndex=0;
document.ilform.Bambinicamera2.selectedIndex=0;

document.ilform.camer3totpx.value= parseFloat(c).toFixed(2).replace('.',',');
document.ilform.Adulticamera3.selectedIndex=0;
document.ilform.Bambinicamera3.selectedIndex=0;

document.ilform.camer4totpx.value= parseFloat(c).toFixed(2).replace('.',',');
document.ilform.Adulticamera4.selectedIndex=0;
document.ilform.Bambinicamera4.selectedIndex=0;
}
//-->

