1) Don't use Msgbox, use window.alert

2) The code on page 2 is Javascript, the code on page 1 is VBScript. Your gonna have to pick one or the other. (Although in theory you could use both, you shouldn't)

3) If you decide that you must use both scripting languages on the same page, be specific. replace this:

<SELECT name=Europe onchange="location.href=options[selectedIndex].value; return true;" size=1 style="font-family: Arial">
with this:
<SELECT name=Europe onchange="Javascript: location.href=options[selectedIndex].value; return true;" size=1 style="font-family: Arial">

(don't put the space between java and script- that is a forum bug)