function roptCheck(formcount){
// alert(formcount);
// alert(document.getElementsByTagName("form")[formcount].elements["itemname3"].value);
opt1='';
try{
opt1 = document.getElementsByTagName("form")[formcount].elements["itemname3"].value;
}
catch(e){
}

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