Hola jdcc:
Haber si lo siguiente te ayuda a resolver tu duda:
<html>
<head>
<script language="JavaScript" type="text/javascript">
function desab(i){
document.forms[I].chekbox.disabled=true;}
function hab(i){
document.forms
.chekbox.disabled=false;}
</script>
<title>ChekBox</title>
</head>
<body>
<form>
<input type="checkbox" name="chekbox" value="1" disabled>
<a href="#" onClick="hab(0)">Activar ChekBox</a><br>
<a href="#" onClick="desab(0)">Desactivar ChekBox</a>
</body>
</html>
Saludos tocayo