function sub()
{
	var total = 0
	var result = "Beginner"
	
	if(oGetById("question_1").value == "a")
	total++
	if(oGetById("question_2").value == "b")
	total++
	if(oGetById("question_3").value == "b")
	total++
	if(oGetById("question_4").value == "c")
	total++
	if(oGetById("question_5").value == "a")
	total++	
	if(oGetById("question_6").value == "c")
	total++	
	if(oGetById("question_7").value == "b")
	total++	
	if(oGetById("question_8").value == "b")
	total++	
	if(oGetById("question_9").value == "c")
	total++	
	if(oGetById("question_10").value == "a")
	total++	
	if(oGetById("question_11").value == "a")
	total++	
	if(oGetById("question_12").value == "c")
	total++	
	if(oGetById("question_13").value == "c")
	total++	
	if(oGetById("question_14").value == "b")
	total++	
	if(oGetById("question_15").value == "c")
	total++	
	if(oGetById("question_16").value == "b")
	total++	
	if(oGetById("question_17").value == "a")
	total++	
	if(oGetById("question_18").value == "c")
	total++	
	if(oGetById("question_19").value == "b")
	total++	
	if(oGetById("question_20").value == "b")
	total++	
	if(oGetById("question_21").value == "c")
	total++	
	if(oGetById("question_22").value == "c")
	total++	
	if(oGetById("question_23").value == "b")
	total++	
	if(oGetById("question_24").value == "b")
	total++	
	if(oGetById("question_25").value == "a")
	total++	
	if(oGetById("question_26").value == "b")
	total++	
	if(oGetById("question_27").value == "c")
	total++	
	if(oGetById("question_28").value == "b")
	total++	
	if(oGetById("question_29").value == "b")
	total++	
	if(oGetById("question_30").value == "c")
	total++	
	if(oGetById("question_31").value == "b")
	total++	
	if(oGetById("question_32").value == "c")
	total++	
	
	if(total < 33)
	result = "Advanced"
	if(total < 30)
	result = "Pre-Advanced"
	if(total < 25)
	result = "Upper-Intermediate"
	if(total < 20)
	result = "Intermediate"
	if(total < 15)
	result = "Pre-Intermediate"
	if(total < 10)
	result = "Elementary"
	if(total < 5)
	result = "Beginner"
	document.getElementById("result").innerHTML= result;
}
