Hi, I am creating a basic character sheet for my Forged in the Dark game. I am not a coder but I have managed to make a simple sheet that does most of what I want. One thing I would like is to add is a drop-down menu for different weapon options and a button to roll a dice. i have made the drop-down menu easily enough, but I can't figure out how to make the button roll a dice. Each option in the menu has a different value - basically when you use a simple weapon like a pistol you roll a D6, and for a more powerful you might roll a d12. Anyone knows the code I could use to make a dropdown menu and button combination that does this? <option value="zero">-</option> <option value="d6">Pistol</option> <option value="d8">Submachine Gun</option> <option value="d12">Sniper Rifle</option> </select> <button id="rollButton">Roll Dice</button>