var menu_selection="";
function perscheck(form)  {
var myindex=document.forms[0].perselect.selectedIndex;
if (myindex==0) {
alert("Please select a personalization option.");
document.forms[0].perselect.focus();
return false;
}
else {
menu_selection=document.forms[0].perselect.options[myindex].value;
return true;
   }
}

