Ehh...but you clearly would then be even more lost on how to change the JavaScript code to account for them being missing, right?
Okay...so just change all this:
Code:
<td align="center">
<INPUT id="density" type="text" value="1" size="12" onFocus="resetdensityForm();"><br>
<select id="densunit" onchange="checkcopydensity()">
<option value="240">grams/cup</option>
<option selected value="1">g/cm³</option>
<option value="1">g/ml</option>
<option value="1">kg/L</option>
<option value="1000">kg/m³</option>
<option value="160.358605679368">oz/gal [UK]</option>
<option value="133.526471232309">oz/gal [US]</option>
<option value="62.4279605761446">lb/ft³</option>
<option value="0.0361272920000837">lb/in³</option>
</select >
</td>
To thie:
Code:
<td align="center">
<input id="density" type="hidden" value="1" />
<input id="densunit" type="hidden" value="1" />
</td>
That's the simplest possible change.