To use a form select list as a navigation menu, begin by assigning links as Name-Value pairs in the Drop-Down List editor; for example:
An onChange event will be used to trigger the jump to a link. Insert the code into the Select List's Code field. Example code follows:

onChange="window.location=form-name.select-name.options[selectedIndex].value;"

where form-name is the name of the form and select-name is the name of the select list. Since the link will only be activated when the selection is changed, you should always place a dummy option as the primary selection, as shown in the example above. This will always force the visitor to make a valid choice.

If you want the link to open in an i-frame, use the following code:

onChange="frames['frame-name'].location=form-name.select-name.options[selectedIndex].value;"

where 'frame-name' is the geometry name of the i-frame, and frame-name & select-name are as listed above.