jQuery(function($){
	// on load
	if($('#vessel_type').val() == 11 || $('#vessel_type').val() == 17) $('#vessel_type_other').show();
	
	// on change
	$('#vessel_type').bind('change', function(evt) {
		if($(this).val() == 11 || $(this).val() == 17) $('#vessel_type_other').show();
		else $('#vessel_type_other').hide();
		
	});
});
