$(document).ready(function() {	
								
			
		   $("#webform-component-personal-information--other-interest").hide();
				
           $("#edit-submitted-personal-information-area-of-interest").change(			
                function(){

					if($('#edit-submitted-personal-information-area-of-interest').val() == "Other") {				
						$("#webform-component-personal-information--other-interest").slideDown();
						return false;
					}
                    
                }
             );
});

