function menu_goto( menuform )
{
  var baseurl = 'http://www.umdwebo.co.za/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #000000; border: 1px solid #e88621;" name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="">Please Select...</option>' );
document.writeln( '<option value="soiree.htm">1. Simbithi Soiree</option>' );
document.writeln( '<option value="cookoff.htm">2. Gateway Cook Off</option>' );
document.writeln( '<option value="driveinn.htm">3. Ballito Lifestyle Centre Open air drive-in</option>' );
document.writeln( '<option value="concert.htm">4. Dozi & Die Super Sewe Concert</option>' );
document.writeln( '<option value="poetry.htm">5. Poetry, Port & Pudding</option>' );
document.writeln( '<option value="gentleman.htm">6. Umdwebo Gentleman’s Club</option>' );
document.writeln( '<option value="lunch.htm">7. Ladies that Lunch</option>' );
document.writeln( '<option value="ccc.htm">8. Tequila, cigar and chocolate tasting</option>' );
document.writeln( '<option value="gcinamhlope.htm">9. Luthuli Museum Retrospective Lecture</option>' );
document.writeln( '<option value="bcxopera.htm">10. Business Connexion Opera Concert</option>' );
document.writeln( '<option value="galadinner.htm">11. Barefoot, Black Tie & Ballroom Gown Gala Beach Dinner</option>' );
document.writeln( '<option value="art.htm">12. SA Art Exhibitions</option>' );
document.writeln( '<option value="picnic.htm">13. Umdwebo Jazz Picnic</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );

