function roptCheck(formid){

opt1='';
try{
opt1 = formid.elements["itemname3"].value;
}
catch(e){
}

if(opt1.match("not selected")){
alert(opt1);
return false;
}
return true;
}
