Afternoon all  I've a werewolf character sheet i'm using whereby when users shapechange, they get certain bonuses, but there's also a lot of valuable data to show off. I originally used a number of dropdowns each with the same attribute, however this has caused a problem because the "option value" tag used by a number of the options is the same:   		  <option value="0" selected>Homid</option>      		 <option value="2">Glabro</option>     		 <option value="4">Crinos</option>     		 <option value="2">Hispo</option>     		 <option value="2">Lupus</option>     		 </select>    This is causing everything to get confused, and my other drop downs don't know what data to use (with the exception of 0 and 4, which both work as designed). with the rest of the code, it looks like this:      The "form bonus" section works fine, and those skill dots get picked up and used in my rolls as they should - its the other boxes (Regeneration amount, Delirium etc) that get messed up.      Looking around online, I've seen some hints suggest I could include multiple fields in my initial drop down and use the data- tag with them, however I don't know how I get this data to display. Ultimatly I'm open to any option, so all suggestions welcome!        My full code for this section is as follows:        <tr>               <td colspan="6" align="center">                      <h2 class="sheet-auto-style1 sheet-header">SHAPESHIFTING</h2>              					 <div class="sheet-row" align="center" style="display: inline-block;">                    <h4 style="text-align: center; width:120px" ">Form</h4>                          <select name="attr_formbonus" style="width:80px; text-align: center; font-size: 14px; font-family: Shadows Into Light; color:maroon; font-weight: bold; display:inline-block">    							 <option value="0" selected>Homid</option>     							 <option value="2">Glabro</option>     							 <option value="4">Crinos</option>     							 <option value="2">Hispo</option>     							 <option value="2">Lupus</option>     							 </select>                       </td>  </div> 			        					     <div class="sheet-row" align="center" style="display: inline-block;">     					  <h4 style="text-align: center; width:120px" ">Form Bonus</h4>                           <input type="radio" class="sheet-defaultRadioBox zero" name="attr_formbonus" value="0" checked="checked" />                          <span></span>                          <input type="radio" class="sheet-defaultRadioBox" name="attr_formbonus" value="1" />                          <span></span>                          <input type="radio" class="sheet-defaultRadioBox" name="attr_formbonus" value="2" />                          <span></span>                          <input type="radio" class="sheet-defaultRadioBox" name="attr_formbonus" value="3" />                          <span></span>                          <input type="radio" class="sheet-defaultRadioBox" name="attr_formbonus" value="4" />                          <span></span>                          <input type="radio" class="sheet-defaultRadioBox" name="attr_formbonus" value="5" />                          <span></span>    					 </td>   </div> 		     				       					 <div class="sheet-row" align="center" style="display: inline-block;">     					  <h4 style="text-align: center; width:140px" ">Regeneration Amount</h4>     					 <select name="attr_formbonus" style="width:140px; display:inline-block">     							 <option value="0" selected>None</option>     							 <option value="2">⬤ Superficial</option>     							 <option value="4">⬤⬤ Superficial</option>     							 <option value="2">⬤ Superficial</option>     							 <option value="2">None</option>     							 </select>                       </td>    					 </div>        					 <div class="sheet-row" align="center" style="display: inline-block;">     					  <h4 style="text-align: center; width:115px" ">Delirium</h4>     					  <select name="attr_formbonus" style="width:60px; display:inline-block">     							 <option value="0" selected>No</option>     							 <option value="2">No</option>     							 <option value="4">Yes</option>     							 <option value="2">No</option>     							 <option value="2">No</option>     							 </select>                       </td>    					 </div>    					     					 <div class="sheet-row" align="center" style="display: inline-block;">     					  <h4 style="text-align: center; width:106px" ">Cost</h4>     					 <select name="attr_formbonus" style="width:140px; display:inline-block">     							 <option value="0" selected>None</option>     							 <option value="2">⬤ Rage Check</option>     							 <option value="4">⬤⬤ Rage Checks</option>     							 <option value="2">⬤ Rage Check</option>     							 <option value="2">None</option>     							 </select>   </td>    					 </div>     					 <div class="sheet-row" align="center" style="display: inline-block;">     					  <h4 style="text-align: center; width:106px" ">Frenzy Difficulty</h4>     					 <select name="attr_formbonus" style="width:40px; display:inline-block">     							 <option value="0" selected>2</option>     							 <option value="2">2</option>     							 <option value="4">3</option>     							 <option value="2">2</option>     							 <option value="2">2</option>     							 </select>                       </td>    					 </div>                   </td>                  </td>                </tr>      Cheers  Chris