i've never come across this problem before but i have a dorp down menu.
In its tag it has Onchange="changeit();"
The javascript for the function is....
function changeit() {
address = "it.php?move=" + document.form.move.value;
window.location = address;
}
The problem is that when i include the ?, in it completly ignores everthing after so it directs to
it.php
everytime. Can anyone help me?