<input type="checkbox" onclick="myFunction(this.checked)"> <script> function myFunction(){ if(arguments[0]) alert('Отмечено'); else alert('Неотмечено'); } </script>