что то не получается
вот ссылка на пример
http://healthsafetytest.co.uk/test_admin/9/test.php
<script>
$(document).ready(function(){
if ($('#yes').is(':checked')) {
$('#box').hide();
}
});
</script>
<style>
#box{width:200px; height:40px; background:#CCC; margin-top:40px; display:none}
</style>
</head>
<body>
<input name="yes" value="yes" id="yes" type="radio"><label for="yes">Yes</label>
<input name="yes" value="no" id="no" type="radio"><label for="no">No</label>
<div id="box"></div>
</body>