$(function(){
  // Document is ready
});

function checkOther(theSelect) {
	var theOther = document.getElementById("other");
	if(theOther) {
		if(theSelect.options[theSelect.selectedIndex].value=="Other") {
			$("#other").show().val("Please specify").select().focus();
		} else {
			$("#other").hide();
		}
	}
}