$(document).ready(function(){
	//when other is selected show it, when its not hide it	
	$("#title").change(function(event) {
		var selected = $("#title option:selected");
		if (selected.val() == "Other") {
			$("#Other").show();	
		} else {
			$("#Other").hide();
		}
		return false;
	});
	$('#title').change();
});
