dpts,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
var s = $("input:checkbox");
s.click(function() {
this.checked && $(this).nextUntil(s).val(1);
});
});
</script>
</head>
<body>
<input type="checkbox" id="c1" >
<input type="text" id="t1" value="">
<input type="text" id="t2" value="">
<input type="text" id="t3" value="">
<input type="text" id="t4" value="">
<input type="checkbox" id="c2">
<input type="text" id="t5" value="">
<input type="text" id="t6" value="">
<input type="checkbox" id="c3">
<input type="text" id="t7" value="">
<input type="text" id="t8" value="">
<input type="text" id="t9" value="">
</body>
</html>