$(document).ready(function() {
	
	$('select#customer_type').change(function() {
		var $this = $(this);
		if ($this.val() == 4) {
			$('p#customer_type_descr_p').slideDown();
		} else {
			$('p#customer_type_descr_p').slideUp();
		}
	});
});
