function CalcMe(arg1) {
var aTTl=0, cTTl=0;
var thisform = document.getElementById(arg1);
var vehiclePrice = parseInt(thisform.vehicleType.value);
var ticketType = parseInt(thisform.ticketType.value);
thisform.vehiclePrice.value = vehiclePrice;

if (parseInt(thisform.vehicleNo.value)>0) {
aTTl = parseInt(thisform.vehicleNo.value) * vehiclePrice;
}
if (parseInt(thisform.adultNo.value)>0 && parseInt(thisform.adultPrice.value)>0) {
cTTl = parseInt(thisform.adultNo.value ) * parseInt(thisform.adultPrice.value);
}
thisform.totalPrice.value = (aTTl + cTTl) * ticketType;
}
