function fnGetId(){ var type = document.getElementsByName("country")[0].value; window.location.href='accommodationfinder.php?type=' & type(); } </SCRIPT>
How can I add type to the end of the URL?????
function fnGetId(){ var type = document.getElementsByName("country")[0].value; window.location.href='accommodationfinder.php?type=' + escape(type); }