in register.php
Code:
<select name="country" id="country" onchange="countryFunc(this.value)";"> <option value="CA">canada</option> <option value="US">united states</option> etc... <td align="right">State:</td><td><div id="province">Choose a country</div></td>
Code:
function countryFunc(country)
{
if(country == "CA")
{
document.getElementById("province").innerHTML = "test";
}
}
State: Choose a country
And when you choose Canada from dropdown it is changed to
State: test
So now I am trying to get this to work with a dropdown box where "test" is above.. Any ideas?


it works now tyvm