$j(document).ready(function(){
	$j("#quantity").change(function(){
		var choice = $j("#quantity").val();
		var output = "";
		for(i=1;i<=choice;i++){
			output += '<tr>';
			output += '<td>';
			output += '<label for="name' + i + '">Student Name: ';
			output += '<input type="text" id="name' + i + '" name="student_name_' + i + '" size="20" /></label>';
			output += '</td>';
			output += '<td>';
			output += '<label for="age' + i + '">Age: ';
			output += '<input type="text" id="age' + i + '" name="student_age_' + i + '" size="2" /></label>';
			output += '</td>';
			output += '</tr>';
		}
		$j("#attendees tbody").html(output);
	});
});

