So, I've been creating a new character sheet for a game that some of my friends and I are developing. The sheet has been coming along nicely thus far but I've run into a speed bump. I am new at programming all together but I think I understand the basics of HTML and CSS. Let me tell you the problem I'm stuck on. I have a select option list right now that I want to auto-populate other fields on the sheet. I know this is possible somehow but I don't have any knowledge of APIs or Sheet Worker Scripts. Let me provide my current code for the select options. <code> <select name="attr_disease1"> <option value="None">None</option> <option value="Bronchitis">Bronchitis</option> <option value="The Flu">The Flu</option> <option value="Fungal Pneumonia">Fungal Pneumonia</option> <option value="Mild Cholera">Mild Cholera</option> <option value="Sleepers Curse">Sleeper's Curse</option> <option value="Spore Anemia">Spore Anemia</option> <option value="Succubus Virus">Succubus Virus</option> <option value="Succubus Virus">Other</option> </select> </code> There are three fields that I want to be populated depending on the response; I need a text input that tells the symptoms of the disease selected, another one that tells the advancement of the disease, and one more that states the cure. Any help on making this happen would make my day/week.