Add a div element to your existing code:
Code:
Self Serve:
<input type="radio" name="type" value="selfserve" onclick="selfservupdate();" />
</strong><div id="divMessage"></div></td>
In your function have:
Code:
function selfservupdate()
{
var oOutput = docuemtnt.getElementById("divMessage");
oOutput.innerHTML = "I must read other answers, especially those posted by Snib, more carefully";
}
As a side matter if this is designed for IE beware, IE cannot handle xhtml properly and will often fail to display or run code correctly for no apperent reason.
--
Joe