$(document).ready(function(){
		var select = $('#country2');

			$.ajax({
				type: "GET",
				url: "country.xml",
				dataType: "xml",
				success: function(xml) {
	

					$(xml).find('Country').each(function(i){
						var title = $(this).attr('Name')

						select.append("<option id="+title+">"+title+"</option>");

					});
					
					function disp(){
						
						var singleValues = $("#country2").val();
						
	
				$(xml).find('Country').each(function(i){
						var title = $(this).attr('Name')
						var Normal= $(this).find('Normal').text();
						var Mobile= $(this).find('Mobile').text();
						
						
						if(title == singleValues)
						{

							$("#textfield7").attr("Value",Normal);
							
							$("#textfield8").attr("Value",Mobile);
							
						}
						
						
						
					});
						
					}
									
				select.change(disp);
					
					select.children(":first").text("Choose Country...").attr("selected",true);
					
				}
			});
			
		});