function menu_goto( menuform )
{
  var baseurl = 'http://www.thefaceandbodyclinic.com/' ;
  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 name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="dermalogica/products.htm">Dermalogica</option>' );
document.writeln( '<option value="dermalogica/products.htm">--Dermalogica Products</option>' );
document.writeln( '<option value="dermalogica/age-smart.htm">--AGE Smart</option>' );
document.writeln( '<option value="dermalogica/body-therapy.htm">--Body Therapy</option>' );
document.writeln( '<option value="dermalogica/boosters.htm">--Boosters</option>' );
document.writeln( '<option value="dermalogica/cleansers.htm">--Cleansers</option>' );
document.writeln( '<option value="dermalogica/daily-groomers.htm">--Daily Groomers</option>' );
document.writeln( '<option value="dermalogica/daylight-defense.htm">--Daily Defense</option>' );
document.writeln( '<option value="dermalogica/exfoliants.htm">--Exfoliants</option>' );
document.writeln( '<option value="dermalogica/masques.htm">--Masques</option>' );
document.writeln( '<option value="dermalogica/medibac.htm">--mediBac</option>' );
document.writeln( '<option value="dermalogica/moisturisers.htm">--Moisturisers</option>' );
document.writeln( '<option value="dermalogica/toners.htm">--Toners</option>' );
document.writeln( '<option value="dermalogica/treatment-foundation.htm">--Treatment Foundation</option>' );
document.writeln( '<option value="dermalogica/dermalogica-pricelist.htm">--Dermalogica Pricelist</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );


