$(function()
{
    $("#mail_form").submit(function()
    {
        if($("#body").val().length == 0)
        {
            alert("You didn't write a message");
            $("#body").select();
            return false;
        }
    });
});

