<tr>
<td align="right"><strong>Country : </strong></td>
<td><select name="countryid" id="countryid" class="inputstyle">
<option value="none">(Select One)...</option>
<cfoutput query="getcountries">
<option value="#countryid#" <cfif getcountries.countryid EQ countryid>selected="selected"</cfif>>#country#</option>
</cfoutput>
</select>
</td>
</tr>
<tr>
<td align="right"><strong>Province : </strong></td>
<td><cfselect name="province" bind="cfc:com.remoteCalls.getRemoteProvince({countryid})" bindonload="false" class="inputstyle"><option value="0" selected>Select One</option></cfselect></td>
</tr>
<tr>
<td align="right"><strong>Town : </strong></td>
<td><cfselect name="town" id="town" class="inputstyle" bind="cfc:com.remoteCalls.getRemoteTowns({province})" bindonload="false"><option value="0" selected>Select One</option></cfselect></td>
</tr>
<tr>
<td align="right"><strong>Suburb : </strong></td>
<td><cfselect name="suburb" id="suburb" class="inputstyle" bind="cfc:com.remoteCalls.getRemoteSuburb({town})" bindonload="false"><option value="0" selected>Select One</option></cfselect></td>
</tr> |