function show_proper_fields_wow(value) {
	if (value==1 || value==7 || value==8 || value==9 || value==10) { //boat
		$('#boat_company').show('fast').children("input, select").val("");
		$('#boat_model').show('fast').children("input, select").val("");
		$('#boat_meters').show('fast').children("input, select").val("");
		$('#boat_location').show('fast').children("input, select").val("");
		$('#boat_age').show('fast').children("input, select").val("");
		$('#boat_material').show('fast').children("input, select").val("");
		$('#boat_fuel').show('fast').children("input, select").val("");
		$('#engine_power').hide('fast').children("input, select").val("9999");
		$('#engine_age').hide('fast').children("input, select").val("9999");
		
	} else if (value==5) { //engine
		$('#boat_company').hide('fast').children("input, select").val("N/A");
		$('#boat_model').hide('fast').children("input, select").val("N/A");
		$('#boat_meters').hide('fast').children("input, select").val("9999");
		$('#boat_location').hide('fast').children("input, select").val("N/A");
		$('#boat_age').hide('fast').children("input, select").val("9999");
		$('#boat_material').hide('fast').children("input, select").val("9999");
		$('#boat_fuel').hide('fast').children("input, select").val("9999");
		$('#engine_power').show('fast').children("input, select").val("");
		$('#engine_age').show('fast').children("input, select").val("");
	} else {
		$('#boat_company').hide('fast').children("input, select").val("N/A");
		$('#boat_model').hide('fast').children("input, select").val("N/A");
		$('#boat_meters').hide('fast').children("input, select").val("9999");
		$('#boat_location').hide('fast').children("input, select").val("N/A");
		$('#boat_age').hide('fast').children("input, select").val("9999");
		$('#boat_material').hide('fast').children("input, select").val("9999");
		$('#boat_fuel').hide('fast').children("input, select").val("9999");
		$('#engine_power').hide('fast').children("input, select").val("9999");
		$('#engine_age').hide('fast').children("input, select").val("9999");
	}
	
}
