function onClick(){
	var education = $('#education');

	if (education != null){
		if ( education[0] != null ) {
			var sel = education[0].value;
			$('#'.sel).selected = "";
		}
	}
	var aaa='';
}


function onReady(){
	$('#submitApply').click(onClick);
}


$(document).ready(onReady);
