what i want to do is, on my registration form i have a country selection box listing the main country i expect my user to be from, it looks like this:
Code: Select all
<label>Select Your Country<br />
<select name="Country" style="width:150px;">
<option value="United Kingdom" selected="selected">United Kingdom</option>
<option value="United States">United States</option>
<option value="Canada">Canada</option>
<option value="Ireland" >Ireland</option>
<option value="Australia" >Australia</option>
<option value="New Zealand" >New Zealand</option>
<option value="Other" >Other</option>
</select>
</label><br /><br />im guessing i will need to use javascript for this but i dont know that so could anybody possibly point me in the right direction to do this?
thanks.