   $(function() {
    var brothers = $('#brothers tbody tr').size() + 1;
    $('a#brother_add').click(function() {
        if(brothers <= 15){      
            $('<tr>'
            + '<td>' + brothers + '</td>'
            + '<td><input type="text" value="" class="small" name="b_adsoyad[]" /></td>'
            + '<td><input type="text" value="" class="small" name="b_email[]" /></td>'
            + '</tr>').appendTo('#brothers tbody');
            brothers++;           
        }
    });
    $('a#brother_remove').click(function() {
        if(brothers > 2){
        
        $('#brothers tbody tr:last').remove();
         brothers--;
        }
    });
});
