function changeselect() 
{ 
var mdiv=document.getElementById('other'); 
var cdiv=document.getElementById('select');
var other2=document.getElementById('other2');

var checkIndex=document.upform.selectMarket.selectedIndex
if(checkIndex==1) 
{ 
mdiv.style.visibility='visible'; 
} 
else 
{ 
mdiv.style.visibility='hidden'; 
other2.style.visibility='hidden'; 
} 
} 
function changeselect2() 
{ 
var mdiv=document.getElementById('other2'); 
var cdiv=document.getElementById('other');
var checkIndex=document.upform.other.selectedIndex
if(checkIndex==1) 
{
mdiv.style.visibility='visible';
} 
else 
{ 
mdiv.style.visibility='hidden'; 
}
if(checkIndex==2 || checkIndex==3 )
	{
	 goto_URL(cdiv)
	}
 
}

/* Zeon:Revtodo(naveriam) : Method used for redirecting URl to open diffrent contact-us pages based on region and locations selection.*/

function goto_URL(object) {
var check_Value=object.options[object.selectedIndex].value;
if(check_Value!="--Select a Region--")
if(check_Value!="--Select a Location--")
window.location.href = object.options[object.selectedIndex].value; 
}


