Hi,you can use the setItemState method to preselect a value in a
dropdown list.Select the first value (its index = 0) of drop down list 2
if "Male" is selected, else the second value.if ($event.change eq
"Male") then DDL2.setItemState(0, 1)elseif ($event.change eq "Female")
then DDL2.setItemState(1, 1)endif