selecting all span elements in frameset with id x

selecting all span elements in frameset with id x

This should be easy but it is confusing me. I want all span text to be 0.0 when the onchange event is called. there is another event that sets the individual ids to the correct data and that works fine. but i need to select all spans to 0.0 first.

// here is the js code (called onchange of a field)
$("#scoreinfo ~ span").text("0.0");

// here is the form code sample
<fieldset id="scoreinfo">
      <fieldset id="extinfo">
            <legend><h2>Vehicle Exterior</h2></legend>
            <fieldset class="scorenumbera"><legend><h6>Paint</h6></legend><span id="paint">8.5</span></fieldset>
            <fieldset class="scorenumbera"><legend><h6>Wheels</h6></legend><span id="wheels">8.5</span></fieldset>
            <fieldset class="scorenumberb"><legend><h6>Mods</h6></legend><span id="mods">8.5</span></fieldset>
      </fieldset>
</fieldset>