Hola, Subotai.
A ver si esto te ayuda:
Código PHP:
<html>
<head>
<script>
function marcar(obj) {
if (obj.checked)
document.getElementById('fila').style.backgroundColor='ff0000'
else
document.getElementById('fila').style.backgroundColor=''
}
</script>
</head>
<body>
<table>
<tr id="fila">
<td></td>
<td></td>
<td>
<input type="checkbox" onClick="marcar(this)">
</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>
Saludos,