$(document).ready(function(){
// start jQuery
	
	// registration menu - toggle speaker input
		$("#cf_field_4").change(function () {
			if ($(this).val() == "no") {
				$("#li--5").slideUp(300); 
			} else {
				$("#li--5").slideDown(300);
			}
	     });

// end jQuery
 });




