function gotourl(select)
{
  var index = select.selectedIndex;
  var newurl = select.options[ index ].value;
  location.href = newurl;
}
