Avron2,
Так? )))
<html>
<head>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.5.1.min.js'>
</script>
<style type="text/css">
.style1{
background:yellow;
}
</style>
</head>
<body>
<div>
<span>
выделить все /
</span><span>
отменить все
</span><br>
<input type="checkbox" class="change" id="n1"/>
<br><br>
<span id="text_n1">
лалалалалалалалалала
</span>
<br />
<input type="checkbox" class="change" id="n2"/>
<br><br>
<span id="text_n2">
лалалалалалалалалала
</span>
<br>
</div>
<script type='text/javascript'>
$('.change:input').change(function () {
var id = "#text_" + $(this).attr('id')
$(this).attr('checked') ? $(id).addClass('style1') : $(id).removeClass('style1');
});
$('span').click(function () {
$('.change:input').attr('checked', !$(this).index()).change()
})
</script>
</body>
</html>