
Is it possible to get the value of the text or anything like "rel" from a select's option tag? Here is my select: <select name="attr_acrobatics_attribute">
<option value="@{strength_mod}">Str</option>
<option value="@{dexterity_mod}" selected>Dex</option>
<option value="@{constitution_mod}">Con</option>
<option value="@{intelligence_mod}">Int</option>
<option value="@{wisdom_mod}">Wis</option>
<option value="@{charisma_mod}">Cha</option>
</select> It allows the user to change the attribute used on the fly for skill checks. I'd like to be able to display the selected text (ex: "Dex") when I use the roll template. I currently use: {{title=Acrobatics (Dex)}} in my 5e template. I'd like to inject Dex in there. I could do it if I had access to javascript - just read the text of the selected option. Is it possible to do since we don't have access to JS? Maybe a hidden input whose value is equal to that text? Thanks