$(document).on('click', '.add-child-link', function(e){
e.preventDefault();
var newdiv;
newdiv = $('#add_child').clone(true, true).insertBefore(this);
newdiv.find('.selectpicker').data('selectpicker', null);
newdiv.find('.bootstrap-select').find("button:first").remove();
newdiv.find('.selectpicker').selectpicker('val', 'RU');
newdiv.removeAttr('id').fadeIn();
});