I have found many answers to the question:
How do I show/hide DIV on selection of \"Other\" dropdown value.
However I cannot fin
Try this -
$( "#security_question_1" ).change(function () { if($( "option:selected", this ).text()=="text you want to match"){ $("#div-id").hide(); }else{ $("#div-id").show(); } });