$(document).ready(function() {
    $('#flush_form').click(function(){
	$('.clr1').val('');
	$('.clr2').val('');
	$('.clr3').attr('checked', false);
	$('#vin').attr('disabled', true);

	$.post('flush.php', {'flag': 1}, function(data) {
	});
    });
});

