Hola beandfa.
Prueba este código:
Código HTML:
<html>
<head>
<script>
function pulsar(e) {
tecla=(document.all) ? e.keyCode : e.which;
if (tecla==66 && e.ctrlKey)
alert('hola');
}
</script>
</head>
<body onkeydown="return pulsar(event)">
</body>
</html>
Saludos,