cfselect to a link
i have a cfselect drop down box with 4 options.
i also have a link next to the cfselect drop down.
now once i made a selection on the cfselect box i want pass that value as a parameter to link. how can i do that. here is the code sample...
<cfselect name="DirecotryOrder" >
<option value="lastname">Last Name</option>
<option value="firstname">First Name</option>
<option value="nickname">Nick Name</option>
<option value="dept">Department</option>
</cfselect>
<a href="print-directory.cfm?id={filtercol.selecteditem.data}" > Link </a>
any help is apriciated...
