$(document).ready(function()
{
	$('#next').click(function(event)
	{	
		$.ajax(
		{	
			url: "http://www.stopermee.nl/assets/js/code.php",
			async: false,
			success: function(msg)
			{
				$('#code').val(msg);
			}
		});
		
		$('#questions').submit();
	
		event.preventDefault();
	});
	
	$("input[name^='options']").click(function(event){
		
		var id = $(this).attr('id').replace('option','');
		

	});
});
