function parseXML()
	{
		$.ajax({
		url: 'dates.xml',
		type: 'GET',
		dataType: 'xml',
		timeout: 3000,
		error: function(){
		    alert('Error loading XML document');
		},
		success: function(xml){
			var i = 0;
		    $(xml).find('event').each(function(){
		    				i++;
							var date = $(this).find('date').text();
							var year = $(this).find('year').text();
							var town = $(this).find('town').text();
		                    var state = $(this).find('state').text();
							var location = $(this).find('location').text();
							$('#training_date').append('<option value="'+date+', '+year+' - '+town+', '+state+'">'+date+', '+year+' &mdash; '+town+', '+state+'</option>');
		                 });
		    $('#training_date option:first-child').attr('selected', 'selected');
		    }
			
		});
	}
jQuery(function($) {
	parseXML();
});