function filterShow() {
$(this).parents('.accordion-item').find('.form-input').val('');
$(this).parents('.accordion-item').find('.f-select-title').each(selectDefaultValue);
function selectDefaultValue() {
var defaultValue = $(this).data('default_title');
$(this).text(defaultValue);
}
}
$('.lft-close').on('click', function(){
filterShow();
});
$('.lft-close').on('click', filterShow);
$('.lft-close').on('click', function(){
filterShow.call(this);
});
$('.lft-close').on('click', function(){
filterShow.bind(this)();
});
$('.lft-close').on('click', function(){
filterShow.apply(this)
});
$('.lft-close').on('click', function(){
filterShow.call(this)
});