$(document).ready(function(){
	$("#helper_form").validate();
	
	
	
	if($("#skill").val() == 'Other'){
		show_other();
	}
	
	$("#skill").change(function(){
		if($(this).val() == 'Other'){
			show_other();
		} else{
			hide_other();
		}
	});
});


function show_other(){
	$("#other *").fadeIn();
}
function hide_other(){
	$("#other *").fadeOut();
}