function changeContact (list) {
	//find out country
	var country = list.options[list.selectedIndex].value;
	//change p tag based on what's select - countryContact
	document.getElementById("countryContact").innerHTML = "";
	if(country == "UK") {
		newContent = "<strong>UK</strong><br />Henrietta Aitken<br />+44 (0)20 7395 7150<br />E-mail: <a href=\"mailto:henrietta.aitken@fleishmaneurope.com\">Henrietta Aitken</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "Germany") {
		newContent = "<strong>Germany</strong><br />Robert Belle<br />+49-(0)89-230 316 27<br />E-mail: <a href=\"mailto:robert.belle@fleishmaneurope.com\">Robert Belle</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "France") {
		newContent = "<strong>France</strong><br />Agn&egrave;s Gicquel<br />+33 1 47 42 92 77<br />E-mail: <a href=\"mailto:gicquela@fleishmaneurope.com\">Agn&egrave;s Gicquel</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "Netherlands") {
		newContent = "<strong>Netherlands</strong><br />Rosanne van Poelvoorde<br />+31 (0)20 406 59 30<br />E-mail: <a href=\"mailto:rosanne.vanpoelvoorde@fleishmaneurope.com\">Rosanne van Poelvoorde</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "Belgium") {
		newContent = "<strong>Belgium</strong><br />Veronique Verlinden<br />+32 2 285 46 00<br />E-mail: <a href=\"mailto:verlindv@fleishmaneurope.com\">Veronique Verlinden</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else{
		//do nothing
	}
}