User selects if they are Int or Wis base caster in a select box to determine which modifier to use for some math down in sheet worker I can't quite figure out what values to set them as to be able to pull those int-mod / wis-mod attributes down without it just be the value of the text and not the value of the attribute. Any ideas on best practices to perform this? HTML: <td class="sheet-table-header3" style="width: 20%; border: 1px solid black;"><span data-i18n="casting-ability">Casting Ability</span>:<br> <select class="sheet-table-data-center" style="height: 24px; width: 64px;" name="attr_spellcastingstat" title="spellcastingstat"> <option type="text" style="width: 45px;" value="int-mod" data-i18n="intelligence-a" selected>Int</option> <option type="text" style="width: 45px;" value="wis-mod" data-i18n="wisdom-a">Wis</option> </select> </td> Sheet worker: on("sheet:opened change:manamod change:spellcastingstat change:wis-base change:int-base change:wis-misc change:int-misc change:wis-temp change:int-temp change:casterlevel", function() { getAttrs(["spellcastingstat", "manamod", "casterlevel"], function(values) { setAttrs({ mana_max: (((parseInt(values["spellcastingstat"],10) * 2) * parseInt(values["casterlevel"],10)) + parseInt(values["manamod"],10)) }); }); });