$(function() {

    // Set the default state
    $('input[name=replyby]').parent().parent().hide();
    $('input#besttime').parent().parent().hide();

    // if both email and phone number is entered, show replyby
        $('input[name=replyby]').parent().parent().fadeIn();

    // if phone number is altered, show besttime
        $('input#besttime').parent().parent().fadeIn();

});