$(document).ready(function(){$.ajax({type: "GET",url: "/code/edicao.xml",dataType: "xml",success: function(xml){var select = $('#mySelect');$(xml).find('dropdown').each(function(){$(this).find('edicao').each(function(){var value = $(this).attr('value');var label = $(this).text();select.append("<option value='"+ value +"'>"+label+"</option>");});});select.children(":first").text("Edições Anteriores").attr("selected",true);}});});
