$(document).ready(function(){
	// $('#cost select').change(function(){
	// 	if ($(this).val() == "other") {
	// 		$('.othercost').show();
	// 	} else {
	// 		$('.othercost').hide();
	// 	}
	// });
	
	$('#cost select').change(function(){
		$('#cost select option').attr('disabled','');
		$('#cost select').each(function(){
			if ($(this).attr('value') != '') {
				var toDisable = $(this).attr('value');
				$('#cost select option').each(function(){
					if ($(this).attr('value') == toDisable) {
						$(this).attr('disabled','disabled');
					}
				});
				$(this).children('option').each(function(){
					if ($(this).attr('value') == toDisable) {
						$(this).attr('disabled','');
					}
				});
			}
		});
	});
});