From the archives

This is the earliest JS written by me I could find on the internet archive (from my student web site at usc, circa 1998):

function gotothingy(selection) {
var selectedplace, tempIndex
tempIndex = selection.selectedIndex
selectedplace=selection.options[tempIndex].value
parent.content.location.href = selectedplace
}

Not as bad I thought it would be.