Howdy! I feel like what I'm doing is biting off a little more than I can chew. I'd like to swap between a few basic types of character sheets using a drop-down menu, I think I've seen some 5e sheets do this but I'm not sure. Here is an example of one format I'm going to try and recreate (Probably just use text boxes and pixel location). I want them to be able to swap from those to one like this This is what I have for my code so far but I can't figure out how to display different things based on the attribute or drop-down options <!-- Here is the selection of sheet type --> <select id="attr_sheet_type" name="attr_sheet_type"> <option value="null">Choose One</option> <option value="titan">Titan</option> <option value="inf">vehicles and infantry</option> <option value="player">Player</option> </select> <br> <!-- Here is the code for a null sheet -->