jQuery( function($) {
	jQuery('.hotlineWrap .note').html('(&euro; 0,09/Min. aus dem dt. Festnetz, Mobilfunk max. &euro; 0,42/Min)');
	/*
		data.xml is generated from below URL
		http://www.holidayland.de/data/Agency.asp?Plz=&Ort=-1&Anzahl=-1&filterType=&Brand=2
	 */
	jQuery.ajax( {
		type :'POST',
		url :'/js/de/data.xml',
		dataType :'xml',
		success: function(data){
			if(!jQuery('.footSearchWrap select.sspSelectMoreLarge')) return false;
			jQuery('.footSearchWrap select').empty();
			jQuery('.footSearchWrap select').append(jQuery('<option></option>').val('').html('Ortsauswahl'));
			jQuery(data).find('Ort').each(function(){
				var optVal = jQuery(this).text();						
				jQuery('.footSearchWrap select').append(jQuery('<option></option>').val(optVal).html(optVal));
			});
		}
	});
});

