Ваш обработчик находится на элементе со значением "id", значением "text", но ваш код ищет "fire".
<input id="text" name="text" type="text" onkeyup="alert('Boom')"
value="Key up here"/>
<input type="button" id="fire" value="fire" />
Обработчик должен выглядеть так:
// says "fire" in your jsFiddle
var textElement = document.getElementById("text");
var keyPres= textElement.onkeyup;
keyPres.call();