Dropdown Parent & Child option list and on submit load a page
Hi
i am new to here, and i am trying to create a list of team member & their location in two different dropdown list, and on submit it should load a new page where it should list appropriate people according the options selected on the list,
i got the drop down selected with the following code but i don't know how to get a page load
Code:
<!DOCTYPE html>
<html>
<body>
<form action="demo_form.asp">
<select name="Region">
<option value="London">London</option>
<option value="saab">Saab 95</option>
<option value="mercedes">Mercedes SLK</option>
<option value="audi">Audi TT</option>
</select>
<select name="Area of Tax:">
<option value="Private Clients">Private Clients</option>
<option value="saab">Individual Tax Returns</option>
<option value="mercedes">US Business Expansion</option>
<option value="audi">Corporate Tax</option>
<option value="audi">Trusts & Estates</option>
<option value="audi">FATCA</option>
<option value="audi">Tax Consultancy</option>
</select>
<input type="submit" value="Submit">
</form>
<p>Choose a Region and Area of Tax your looking for and click the "Submit" button </p>
</body>
</html>
i may be wrong on the above code, please correct me.
thank you
Sellar