$(document).ready(function(){
	if(!$("input#other").parent().hasClass("warning") && $("select#colours option:selected").text() != 'Other') {
		$("input#other").parent().hide();
	}
   
   $("select#colours").change(function() {
		if ($("select#colours option:selected").text() == 'Other') {
			$("input#other").parent().slideDown("fast");
		} else {
			$("form li:visible input#other").parent().slideUp("fast");
		}
   });
});