function	redireccionar(form) {
	
	
	/*var si = document.getElementById('country').selected.value;
    if (si=="USA")
	   window.location.href = "http://www.usbcompany.co.uk/";*/
	if (document.getElementById('country').options[0].selected) {
		window.location.href = "http://www.theusbsuperstore.com/";}
	else if (document.getElementById('country').options[1].selected) {
		window.location.href = "http://www.usbcompany.co.uk/";}
	
	
      
	return true;
	
}

