teslalight, здравствуйте
так подойдет?
<script type="text/javascript" src="http://yandex.st/jquery/1.4.4/jquery.min.js"></script>
<script>
function test(x){
//Тут Ваша функция
alert(x);
}
$(document).ready(function(){
$("#inp").blur(function(){
test(this.value);
});
})
</script>
<input type = "text" id = "inp"/>
или так
<script>
function test(x){
//Тут Ваша функция
alert(x);
}
function ff(){
document.getElementById("inp").onblur = function(){test(this.value)}
}
</script>
<body onload = "ff()">
<input type = "text" id = "inp"/>