pornoborets,
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="checkbox" class="fl_select" id="row1" checked="checked" />
<input type="checkbox" class="fl_select" id="row2" />
<script>
[].forEach.call(document.getElementsByClassName('fl_select'), function(e) {
e.onclick = function() {
alert('Было ' + (!this.checked ? 'вкл' : 'выкл'));
alert('Стало ' + (this.checked ? 'вкл' : 'выкл'));
}
})
</script>
</body>
</html>