window.addEvent('domready', function() {
	$('radiostations').addEvent('change', function(event) {
		event.preventDefault();
		var namefile = $('radiostations').getProperty('value'); 
		if (namefile == '') {
			$('radioimage').setProperty('src','http://www.nl.fm/img/site/bannerlogo.gif');
			$('play').set('html','');
		} else {
			$('radioimage').setProperty('src','http://www.nl.fm/img/radiostations/' + namefile + '.gif');
			$('play').set('html','<a href="http://' + namefile + '.nl.fm" target="_blank" class="play">Start</a>');	
		}

	});
});