function changeRecipient() {

	if (document.getElementById('AreaOfInterest').selectedIndex==0){
	regForm._recipients.value="leicester@nicholashumphreys.com, lettings@nicholashumphreys.com, derby@nicholashumphreys.com, burton@nicholashumphreys.com, sales@nicholashumphreys.com;"
	//alert(regForm._recipients.value);
	}
	if (document.getElementById('AreaOfInterest').selectedIndex==1){
	regForm._recipients.value="leicester@nicholashumphreys.com";
	//alert(regForm._recipients.value);
	}
	if (document.getElementById('AreaOfInterest').selectedIndex==2){
	regForm._recipients.value="lettings@nicholashumphreys.com";
	//alert(regForm._recipients.value);
	}
	if (document.getElementById('AreaOfInterest').selectedIndex==3){
	regForm._recipients.value="derby@nicholashumphreys.com";
	//alert(regForm._recipients.value);
	}
	if (document.getElementById('AreaOfInterest').selectedIndex==4){
	regForm._recipients.value="burton@nicholashumphreys.com";
	//alert(regForm._recipients.value);
	}
	if (document.getElementById('AreaOfInterest').selectedIndex==5){
	regForm._recipients.value="sales@nicholashumphreys.com";
	//alert(regForm._recipients.value);
	}
}