function SetCountryDropDown()
{
	var mydomain = document.domain;
	var myselect=document.getElementById("Salon_Country")
	
	//UPDATE THIS SECTION IF COUNTRY DROP DOWN IS TO BE PRE-FILLED
	if (mydomain == 'stage.system-professional.de') myselect.selectedIndex = 2;
	if (mydomain == 'stage.system-professional.at') myselect.selectedIndex = 1;
	if (mydomain == 'stage.system-professional.ch') myselect.selectedIndex = 3;
    
    return true;
}