DropDown Selection to check boxes 2
Hello,
I made a posting here a while back under the same title. I am not sure how to revive an old posting here. If there is a way to do so please let me know for future posting. But for reference this is the link to the old posting
So I have this script that I am currently using
if(event.value=="MARRIED")
this.getField("QAB MARTIAL").checkThisBox(0,true);
else if (event.value=="SINGLE" || event.value=="WIDOW" || event.value=="WIDOWED")
this.getField("QAB MARTIAL").checkThisBox(2,true);
else if (event.value=="DIVORCED")
this.getField("QAB MARTIAL").checkThisBox(1,true);
But I just got a new check box of Dual Military that was added, and I am looking to add Dual Military to this script so it will work properly. I have already added Dual Military to the dropdown, so this is the last step, and I am not sure how to add it to this script without jacking it all the way up. I'm sure it is simple. How would I go about adding it? Is it as simple as duplicating one of the else if, changing the even and heading a 3, true?
Please help; thank you greatly in advance
