
function GotoselectedCountry(el) {
	if (el.selectedIndex) {
//		document.forms[0].elements['PreviousSelection'].value = document.forms[0].elements['CurrentSelection'].value ;			
//		document.forms[0].elements['CurrentSelection'].value = el.options[el.selectedIndex].text;
//	alert(el.options[el.selectedIndex].value);
           window.location.href = el.options[el.selectedIndex].value;

	}
}
