function getSite()
{
  var el =  document.getElementById("rmsites");
  var cur = el.options[el.selectedIndex].value;
  if (cur == 1) {
   	window.location.href = 'http://www.rubblemaster.com/';
 	} else if (cur == 2) {
   	window.location.href = 'http://www.rubblemaster-americas.com/';
  } else if (cur == 3) {
  	window.location.href = 'http://www.ecyltd.co.uk/haulmark/rubblemaster.htm';
  } else if (cur == 4) {
  	window.location.href = 'http://www.rubblemasteritalia.cc';
  }
}

function getLang()
{
  var el =  document.getElementById("rmlang");
  var cur = el.options[el.selectedIndex].value;
  if (cur != '') {
   	window.location.href = document.getElementsByTagName('base')[0].href + cur.substring(1, cur.length);
  }
}
