// JavaScript Document

function goToUrl() {
var redirect;
redirect = document.getElementById('dropDown').value;
if (redirect == '/en/ways_to_contribute/tribute_form/' || redirect == '/en/ways_to_contribute/honour_memoriam/?type=honour' || redirect == '/en/ways_to_contribute/honour_memoriam/?type=memoriam') {
	document.location.href = redirect;
}
}

