var translationObj= {
			'de' : {
				'locations_select_text' : 'Bitte wählen ...'
			},
			'en' : {
				'locations_select_text' : 'Please choose ...'
			},
			
			getLL: function(label, language) {
				if (translationObj[language] && translationObj[language][label])
					return translationObj[language][label];
				else
					return '';
			}
			
}


