str = location.href;
splitcountry = str.split('/');
clength = splitcountry.length - 1;
slength = document.getElementById('intcountry').length;
for(x=0;x<slength; x++){
	if(splitcountry[clength] == document.getElementById('intcountry')[x].value+'.html'){
		document.getElementById('intcountry').selectedIndex = x;
		x = slength+2;
	}
}

function changesel(ivalue){
	if(ivalue!=0){
		if(ivalue=="canada" || ivalue=="united_states"){
			window.location="/en/customercare/index.html";
		}else{
			window.location=ivalue+".html";
		}
	}
}