<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$('.chb').click(function() {
if ($('.chb:checked').length > 0)
$('#textarea').html('Есть отмеченные чекбоксы');
else
$('#textarea').html('Нет отмеченых чекбоксов');
});
});
</script>
</head>
<body>
<input type="checkbox" id="1" class="chb" /><br />
<input type="checkbox" id="2" class="chb" /><br />
<input type="checkbox" id="3" class="chb" /><br />
<div id="textarea"></div>
</body>
</html>