I am not sure if Select Tag can work with Hidden Text Input like this:
<SELECT NAME="Testing">
<OPTION VALUE="1"> One </option>
<input type="hidden" value="hello" name="Testing">
<OPTION VALUE="2"> Two </option>
<input type="hidden" value="world" name="Testing">
</SELECT>
Any ideas?
That won’t work, but this will:
Now judging from your code, it looks like you want Testing=hello if the first option is selected and Testing=world if the second option is selected. In that case, do it like this: