$().ready(function() {
    $.ajax({
        url: '/nomvc/email_buscaptador.php',
        dataType: 'text',
        success: function (htmlresponse) {
            if (htmlresponse) {
                $("#bcemail").val(htmlresponse);
                $("#email2").val(htmlresponse);
            }
        }
    });
});