$(function() {
    $('.obj_select_wrapper select').change(function() {
        if ($(this).val() == '-') {
            $(this).parent().find('.minus').hide();
        } else {
            $(this).parent().find('.minus').show();
        }
        var hasEmpty = false;
        $('.obj_select_wrapper select').each(function() {
            if ($(this).val() == '-') {
                hasEmpty = true;
                return false;
            }
        });
        if (!hasEmpty) {
            $(this).parent().clone(true).appendTo($(this).closest('td')).find('select').val('-').end().find('.minus').hide();
        }
    });
	$('.obj_select_wrapper .plus').click(function() {
		$(this).parent().clone(true).appendTo($(this).closest('td')).find('select').val('-').end().find('.minus').hide();
	});
	$('.obj_select_wrapper .minus').click(function() {
		var select = $(this).closest('.obj_select_wrapper').find('select');
		if (select.val() != '-') {
			$.ajax('inquiry.php', {data: {'del': select.val(), 'no_output': 1}});
		}
		if ($(this).closest('td').find('.obj_select_wrapper').size() <= 1) {
			select.val('-');
		} else {
			$(this).parent().remove();
		}
	});
});

