Es mas o menos esto lo que busca ??
Código PHP:
<html>
<head>
<script>
window.onload = function(){
el = document.getElementById("check");
el.onclick = function(){
if(this.checked){
document.getElementById("tabla1").style.display = 'none';
}else{
document.getElementById("tabla1").style.display = '';
}
}
}
</script>
</head>
<body>
<center><input type="checkbox" id="check"></center>
<table id="tabla1">
<tr>
<td>Dato 1</td>
<td><input type="text"></td>
</tr>
</table>
</body>
</html>
salu2