Hello gamers, with my limited html-skills I tried to create a repeating section of skills (language+12: "X", language+14: "Y"...) with a selection in it which gets the actual skill (language, law, read/write, ...). It basically worked out so far, but my problem is that the selection-field is always resetting itself to the first choice possible (in this case "language" = "Sprechen") and does not save other choices below the top choice of that selection. Is there a way to make the selection not set itself back to the top option no matter what you choose? <fieldset class="repeating_Mehrfachfertigkeiten"> <table> <tr> <td><select class="skill-input" name="attr_Mehrfachfertigkeit" style="width: 100px;"></td> <option name="attr_Sprechen" value="@{Mehrfachfertigkeit}">Sprechen</option> <option name="attr_Schreiben" value="@{Mehrfachfertigkeit}">Schreiben</option> <option name="attr_Landeskunde" value="@{Mehrfachfertigkeit}">Landeskunde</option> <option name="attr_Überleben" value="@{Mehrfachfertigkeit}">&Uuml;berleben</option> </select></td> <td class="skill-label"><input style="width:100%" type="text" name="attr_Gebiet" /></td> <td><input class="skill-input" type="number" name="attr_Mehrfachfertigkeit" style="width: 50px;" /></td> <td><button type='roll' value='&{template:default} {{name=Erfolgswurf}} {{Ergebnis=[[1d20+@{Mehrfachfertigkeit}+@{Intelligenzbonus}+?{Würfelmodifikator (WM)|0}]]}}' name='roll_Mehrfachfertigkeit' /></td> </tr> </table> </fieldset> Thanks for help in advance! :)