jQuery(document).ready(function(){
    $("input#id_email").focus(function(){
        $(this).val("");
    })
});