
function selectOptions() {
	var selected = document.frmOptions1.selOptions.options[document.frmOptions1.selOptions.selectedIndex].value;
	
	if (selected != "selectMe") {
		location.href = selected;
	}	
}


document.write(''+
'<br>'+
'<table>'+
'	<tr><td width="20">&nbsp;<br><br></td><td>'+
'		<form method="post" action="" name="frmOptions1">'+
'			<select name="selOptions" onchange="javascript:selectOptions()">'+
'				<option value="selectMe">Select an option. . .</option>'+
'					<option value="gallery_sea.htm">Gallery</option>'+
'					<option value="becomeamodel_sea.htm">How To Become a Model</option>'+
'					<option value="hotNews_sea.jsp">Hot News</option>'+
'					<option value="regPortfolio_sea.jsp">Launch Pad</option>'+
'			</select>'+
'		</form>'+
'	</td></tr>'+
'</table>'+
'');