function go2(){
if (document.selecter2.select2.options[document.selecter2.select2.selectedIndex].value != "none") {
location = document.selecter2.select2.options[document.selecter2.select2.selectedIndex].value
		}
	}

document.write('<form name="selecter2"><select name="select2" size=1 onchange="go2()">');
document.write('<option value=none>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Select your destination');
document.write('<option value="http://sharkgallery.netfirms.com">- Sharks');
document.write('<option value="http://greatwhiteshark.netfirms.com">- Great White Shark');
document.write('<option value="http://sharkgallery.netfirms.com/descript/classification.html">- Sharks and Their Relatives');
document.write('<option value="http://sharks-med.netfirms.com">- Sharks of The Mediterranean Sea');
document.write('<option value="http://sharks-attacks.netfirms.com">- Shark Attacks Statistics & Data');
document.write('</select>');
document.write('</form>');