function checkCountryOfUser(e, field, country, countryCode, gsmNumber) {
	var selectedOption = field.options[field.selectedIndex].value;

	// Added the lines below so the user is redirected when the country is not supported.
	if (selectedOption == 'other') {
		window.location = '/othercountries/';
	}

	handleCountryChange(e, country, countryCode, gsmNumber);
}