$(document).ready(function(){

	$('#bug_project_select').change(function(){
		var project = $(this).attr('value');
		
		$('#bug_category_select option').each(function(){

			if($(this).attr('class') == project){
				$(this).show();
			}else{
				$(this).hide();
			}
		});
		$('.show_always').show();
	});
});
