Countryobj = {	
"AUS" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html",
"INN" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html",
"MAL" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html",
"NZL" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html",
"PHL" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html",
"SNG" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html",
"THA" :	"https://direct-secure.motorola.com/hellomoto/xp/apac/registration.html"
}

function GoToCountry() {
var myindex = document.txt_country.dropdown.selectedIndex
var myCountry = document.txt_country.dropdown.options[myindex].value
var myURL = "";

if (myCountry == "-1"){
	alert("Please select your Country");
}
	else {
		myURL = Countryobj[myCountry];
	
		myURL = myURL.toLowerCase();
	
		document.location.href = Countryobj[myCountry] + "?country=" + document.txt_country.dropdown.options[myindex].value;
	}
}
