function menu_goto( menuform )
{
  // Generated by thesitewizard Navigation Menu Wizard 2.3.2
  // Visit http://www.thesitewizard.com/ to get your own
  // customized navigation menu FREE!
  var baseurl = 'http://horsemens.org.au/' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="ch1goto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );

document.writeln( '<option value="">2009 New Dressage Tests</option>');

document.writeln( '<option value="/downloads/Dress/1D.pdf">Test 1D</option>');

document.writeln( '<option value="/downloads/Dress/2D.pdf">Test 2D </option>');

document.writeln( '<option value="/downloads/Dress/3D.pdf">Test 3D </option>');

document.writeln( '<option value="/downloads/Dress/4C.pdf">Test 4C</option>');

document.writeln( '<option value="/downloads/Dress/5C.pdf">Test 5C</option>');

document.writeln( '<option value="/downloads/Dress/Inter_I_09.pdf">Test Inter 1</option>');

document.writeln( '<option value="/downloads/Dress/Inter_II_09.pdf">Test Inter 2</option>');

document.writeln( '<option value="/downloads/Dress/GP_09.pdf">Test Grand Prix</option>');

document.writeln( '<option value="/downloads/Dress/Prix_St_Georges_09.pdf">Test Prix St George</option>');

document.writeln( '</select>');

document.writeln( '</form>');