I want to add an event to the specified tag <select>
and when I choose one <option>
saves its value and when I press the button moves to the page for that option.
<select id="subjselect" name="subj" onchange="location=this.options[this.selectedIndex].value;">
<option value="www.facebook.com">option1</option>
<option value="www.google.com">option2</option>
</select>
<input type="button" onClick="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">