Hi,You are right to make the first question a drop down, because if it
was a textfield and a user put in US, then the script would fail.In the
dropdown have the binding set to specify value. Note down the value for
the "United States", let's say 4.Then an exit event would look something
like:if (this.rawValue == 4){ stateQuestion.presence = "visible";}else{
stateQuestion.presence = "hidden";}In the form set the initial/default
presence of the stateQuestion to invisible or hidden (Object/Field).G...