ct = document.getElementById('extrameal2');
extrameal2 = extrameal2Select.options[extrameal2Select.selectedIndex].value;
// single selectlist does not need validation.
}
}catch(err){
result += 'some thing wrong';
}
try{
if(extraticket>=3){
//read extrameal3 value
var extrameal3;
var extrameal3Select = document.getElementById('extrameal3');
extrameal3 = extrameal3Select.options[extrameal3Select.selectedIndex].value;
// single selectlist does not need validation.
}
}catch(err){
result += 'some thing wrong';
}
//check all validation
if(result!= ''){
alert(result);
return false;
}
return true;
}