<script>
function cb(arg, th){
check = th.checked;
if (check == true){
document.form.elements[arg].style.display = 'block';
}
else{
document.form.elements[arg].style.display = 'none';
}
}
</script>
<input type="checkbox" onclick='cb(0, this)'>Открыть первое поле?<br />
<input type="checkbox" onclick='cb(1, this)'>Открыть второе поле?<br />
<input type="checkbox" onclick='cb(2, this)'>Открыть третье поле?<br />
<input type="checkbox" onclick='cb(3, this)'>Открыть четвертое поле?<br />
<form name='form'>
<input type='text' style='display:none'><br />
<input type='text' style='display:none'><br />
<input type='text' style='display:none'><br />
<input type='text' style='display:none'><br />
</form>