$(document).ready(function()
{
    $("#Q").focus(function(srcc)
    {
        if ($(this).val() == $(this).attr('title'))
        {
            $(this).val("");
        }
    });
});

