function moveTitleUp()
{
	// Get the total of questions
	questions = $("table.survey_body tbody").children();
	total_question_count = questions.length;
	
	first_question = questions[0];
	// The last one is teh submit button so the title question is the second last one
	last_question =  questions[total_question_count - 2];
	
	
	// move the last question on top
	$(first_question).before('<tr>' + $(last_question).html() + '</tr>');
	$(last_question).remove();
}

function fixDisclaimer()
{
	// Get the total of questions
	questions = $("table.survey_body tbody").children();
	total_question_count = questions.length;
	
	// The last one is the submit button so the disclaimer question is the second last one
	last_question =  questions[total_question_count - 2];
	
	children = $(last_question).children().children();
	$(children[0]).hide();
	$(children[1]).css("width", "auto");
}


$(document).ready(function()
{
	
	moveTitleUp();
	//fixDisclaimer();

	$("select[name='7F46_DC1B_6B6B_3386\:country']").change(function(){
		if( "Australia" !== $(this).val() )
		{
			$("select[name='7F46_DC1B_6B6B_3386\:state']").val("OTHER");	
		}	
	});

});