$(document).ready(function () {
	$("select#firm_type").change(function () {
		if ($("select#firm_type").val() == 4)
			$('#firm_other_type').show();
		else
			$('#firm_other_type').hide();
	});
	$('input').tooltip({ 
			track: false, 
		    delay: 0, 
		    showURL: false, 
		    fade: 250 
		
	});
	$('img[@src$=.png]').ifixpng();
});
