﻿$(function() {    
    $("#Text1").focus(function() {
        var elm = $(this);
        elm.val("");
        elm.unbind();
    });
})
