show/hide this revision's text 2 deleted 18 characters in body

You are using getElementByID, but you aren't specifying IDs for your inputs. Perhaps consider this instead:

function SwapInlineFrameSource(rdoButton)
{
  rsiFrame = document.getElementById("RatesFrame");
  rsiFrame.src = rdoButton.value;
}

<input type="radio" value="SantaCruzRates.htm" checked="checked" name="County" onClick="SwapInlineFrameSource(this);">Santa Cruz</input>
<input type="radio" value="DelNorteRates.htm" checked="checked" name="County" onClick="SwapInlineFrameSource(this);">Del Norte</input>
show/hide this revision's text 1

You are using getElementByID, but you aren't specifying IDs for your inputs. Perhaps consider this instead:

function SwapInlineFrameSource(rdoButton)
{
  rsiFrame = document.getElementById("RatesFrame");
  rsiFrame.src = rdoButton.value;
}

<input type="radio" value="SantaCruzRates.htm" checked="checked" name="County" onClick="SwapInlineFrameSource(this);">Santa Cruz</input>
<input type="radio" value="DelNorteRates.htm" checked="checked" name="County" onClick="SwapInlineFrameSource(this);">Del Norte</input>