Phrank,
I was working on something similar. Once you create your drop down, you can select a choice from the menu when it's populated.
My menu differs in a way that when an option is chosen, you must manually click the 'Sumit' button...
LordShryku is on target with his posts.
If you want to include an 'auto-direct' function for your menu, you can try something like this, also...
<form method =get>
<script LANGUAGE='JavaScript'>
<!--
function loadPage(list) {
if (list.selectedIndex > 0) {
location.href=list.options[list.selectedIndex].value}
}
// -->
</script>
<SELECT name='location' onChange='loadPage(this)'>
// Here you would populate your drop-box with items from the database...
</form>
If you need help in taking that drop-box selection and populating that record's fields into editing fields with your next form, I can help you.
Also, look through my previous posts for the week if you're having any troubles.
Good luck, Mike