I want to create a contact page that has a select box at the top and below a div containing a standard form.
However when the user selects a different option, the div containing the form changes to another form.
Something like this:
<select>
<option value="form1">Initial Form</option>
<option value="form2">Form 2</option>
<option value="form3">Form 3</option>
<option value="form4">Form 4</option>
</select>
<div class="contactFormContainer">
Initial Form Here
</div>
Then on the external page with all the forms i guess it would look like this.
<div class="form1">FORM content 1</div>
<div class="form2">FORM content 2</div>
<div class="form3">FORM content 3</div>
<div class="form4">FORM content 4</div>
Does this make any sense?
Thankyou