<script>
function doShow(obj){
   if(obj.value == 0) document.form1.txt.style.display = "inline";
   else document.form1.txt.style.display = "none";
}
</script><form name="form1">
<input type="radio" name="ck" value="0" checked="true" onclick="doShow(this);"/>
<input type="text" name="txt" style="display:inline;"/>
<br>
<input type="radio" name="ck" value="1" onclick="doShow(this);"/><br>
<input type="radio" name="ck" value="2" onclick="doShow(this);"/><br>
<input type="radio" name="ck" value="3" onclick="doShow(this);"/><br>
<input type="radio" name="ck" value="4" onclick="doShow(this);"/><br>
</form>