I'm sure that title is vague as hell, so let me try to explain what I'm doing.
Let's say that I have two drop downs in a form that have database-pulled information in them, like this:
Dropdown 1
->Option 1
->Option 2
Dropdown 2
->Option 3
->Option 4
Dropdown 3
[nothing]
What I'm looking to do is to bring the selected options into a single dropdown on the same page dynamically. So it would then look like
Dropdown 1
->[SELECTED] Option 1
-> Option 2
Dropdown 2
->[SELECTED] Option 3
-> Option 4
Dropdown 3
->Option 1
->Option 3
Picture a sports bracket where you have two "semi-finals," like Team A vs Team B for game 1, then Team C vs Team D for game 2. After that, if Team A wins (selected) and Team C wins (selected), the next game would be Team A vs Team C (dropdown 3).
Any ideas?
Edit, for those that have responded: I suppose I could have been more specific, as this directly answers what I asked for, and I thank you for that. However, I have both of the initial dropdowns having one of the options as the default, so dropdown 3 should already have both of the options from 1 and 2 in it. It would change the options if dropdown 1's option changed. So by default, dropdown 3 would show option 1 and 3, but if I changed dropdown 1 to option 2, it would change dropdown 3 to option 2 and 3. Does that make sense?