<input type="text" value="Введите текст" onfocus="this.value = ''" onblur="this.value = 'Введите текст'"></input>
$('input').focus(function() { alert( $(this).val() ); });