function checkSel( x ){   var arr = new Array( 1, 7, 2, 3,                        4,                         7 );   if( document.form1.elements[ x ].selectedIndex == ( arr[ x ] ) )   {      alert( "You are correct!" );   }   else   {      alert( "Sorry.  Please try again." );   }}