I am trying to add a new DropDownFor on my View, but it should only appear if a specific SelectList item from the first DropDownFor is selected.
Just to make things clear, let's say my first DropDownFor has two options: "A" and "B". If "B" is chosen, then I want the additional DropDownFor to be displayed on the page. However, if "A" is chosen, then I don't want any further action to occur on the page.
Does anyone have suggestions on how I can achieve this?