function gotocountry()
{
	var URL = document.regiondropdown.site.options[document.regiondropdown.site.selectedIndex].value;
	window.location.href = URL;
}


document.write('     <form name="regiondropdown"><select name="site" onChange ="gotocountry()" class="drop3">');
document.write('       <option value="">Select a Country</option>');
document.write('       <option value="/transactionservices/home/region/nam/countries/canada.jsp">Canada</option>');
document.write('       <option value="/transactionservices/home/region/nam/index.jsp">The United States</option>');
document.write('      </select></form>');
