Código Javascript
:
Ver original$(':checkbox').click(function(){
if($(this).attr('checked') == true) {
$(this).parent().attr('style','background:#ff0000;')
} else {
$(this).parent().removeAttr('style')
// o $(this).parent().attr('style','background:#ff0000;') y elejis el color si no esta seleccionado
}
})
eso esta hecho con jquery espero te sirva
aca la api con todas las funciones
[URL="http://api.jquery.com/"]http://api.jquery.com/[/URL]