Er meint
<select id="Goto">
<option value="">GoTo:</option>
<option value="https://example.com">example.com</option>
<option value="https://example.org">example.org</option>
</select>
und sucht offenbar
<script>
var selectBox = document.getElementById( 'Goto' );
selectBox.addEventListener( 'change', function() {
var selected = selectBox.selectedIndex;
var value = selectBox[selected].value;
if ( value ) {
location.href = value;
}
} );
</script>
Jetzt braucht er noch jemanden, der es ihm erklärt. Ich muss weg.