	$(document).ready(function(){
	
		//changelink
		$('#my-dropdown').sSelect().change(function(){
			switch ($('#my-dropdown').getSetSSValue()){
			case "Arabic countries":
				document.location.href = 'http://www.planon-fm.com';
			break;
			case "Austria":
				document.location.href = 'http://www.planon.at';
			break;
			case "Belgium":
				document.location.href = 'http://www.planon.be';
			break;
			case "France":
				document.location.href = 'http://www.planon.fr';
			break;			
			case "Germany":
				document.location.href = 'http://www.planon-fm.de';
			break;
			case "Switzerland (German)":
				document.location.href = 'http://www.planon.ch';
			break;
			case "Luxemburg (French)":
				document.location.href = 'http://www.planon.be/fr';
			break;
			case "The Netherlands":
				document.location.href = 'http://www.planon.nl';
			break;
			case "United Kingdom":
				document.location.href = 'http://www.planon.co.uk';
			break;
			case "United States":
				document.location.href = 'http://www.planoniwms.com';
			break;
			case "Other":
				document.location.href = 'http://www.planon-fm.com';
			break;															
			default : document.location.href = '#';
			}
		});
				
	});	