I'm looking for a JS function particularly for select elements which can hide the associated label as soon as any option is selected except for first one. Below is the HTML I'm using...
HTML
<label for="ABC">LABEL</label>
<select id="ABC">
<option value="None"> </option>
<option value="temp1"> Temp1 </option>
<option value="temp2"> Temp2 </option>
</select>