Basically, what I'm trying to do is implement a weapons repeating section for players to add their weapons with their associated attack and damage rolls using the Pathfinder system. I have a dropdown menu to specify which ability score the attack bonus will be based off of (STR, DEX, CON, INT, WIS, CHA), but the default for a newly created section is STR, and the problem is that it does not update the attack bonus readonly field, which is just set to 0 at creation. So you have a newly created row with STR selected as their ability score, but an incorrect 0 in the attack bonus readonly field. I know I can circumvent this dilemma by throwing in a "null" default value for the ability score dropdown box (something like a "---" value), but I was just wondering if there actually was a way to address this before I did that.