function showcountry()
{

if(document.getElementById("dropdwn").style.visibility =="hidden"){

document.getElementById("dropdwn").style.visibility="visible";

}
else{

document.getElementById("dropdwn").style.visibility="hidden";
}
}
function hideCountry(){
document.getElementById("dropdwn").style.visibility="hidden";
}


function change(e) {

var nextitem = document.getElementById('country');
//alert(nextitem.value);
 nextitem.action='/EukGlobal/core/page_generator/navigation/header/EukGlobal_HeaderContry.jsp';
nextitem.submit();
}