if(document.all && !document.getElementById) {
 document.getElementById = function(id) {
 return document.all[id];
 }
}
function $(id){return document.getElementById(id);}

 function countrySwitch() {
 var XOPTION = $('changeForm').selCountry.selectedIndex;
 $('changeForm').selCountry.selectedIndex = "0";
 if(XOPTION > "0"){
 top.location.href = $('changeForm').selCountry.options[XOPTION].value;
 }
  } 