Hola, bhonox.
Esto puede servirte:
Código PHP:
<html>
<head>
<script>
function cambiar(valor) {
obj=document.getElementById('fila');
if (valor)
obj.style.backgroundColor='green';
else
obj.style.backgroundColor='red';
}
</script>
</head>
<body>
<table border="1" width="100%">
<tr id="fila" style="background-color:red">
<td> </td>
<td> </td>
<td><input type="checkbox" onclick="cambiar(this.checked)"></td>
</tr>
</table>
</body>
</html>
Saludos,