So I have a drop down menu I'm trying to add to a character sheet to prompt multiple related outputs. Here is the drop down in question:

<span>
<select title="@{RaceChoice}" name="attr_RaceChoice">
<option value="@{HumanDetails}" selected>Human</option>
<option value="@{ElfDetails}">Elf</option>
</select>
</span>

Ideally I am trying to have @{HumanDetails} be able to trigger multiple lines:

  • @{HumanDetailsInfo}
  • @{HumanDetailsStat}
  • @{HumanDetailsAbility}
All three are about a sentence long text outputs intended for three lines. Right now I can get any one of these to work from that drop down menu, but I can't seem to figure out how to get all three to populate based upon that single drop down menu choice.

Thoughts?