I want to display only a selected choices from all the choices in a drop down box with respect to the choice selected in the previous drop down box...
EXAMPLE:
- DropDown1 contains
living
,non living
- DropDown2 contains
Animals
Birds
Fruits
Vegetables
, but the condition that this drop down has to showAnimals
&Birds
option only ifLiving
is selected in DropDown1 and vice versa - DropDown3 contains list of
animals
,birds
,fruits
andvegetables
and it has to display only the choices with respect to the Selected option in DropDown2...
Is this possible?