$(document).ready( function () {
	$('#noscript').hide();
	
	var orselector = '<select id="opelrepresentative" name="opelrepresentative"><option>select a country</option>';
	$('#noscript a').each( function() {
		orselector = orselector + '<option value="' + $(this).attr('href') + '">' + $(this).text() + '</option>';
	});
	orselector = orselector + '</select>';
	
	$('#representativesform').append(orselector);
	$('select#opelrepresentative').change(function() {
		$('.opel_representatives_box').load($(this).val() + ' .opel_representatives_box div');
	});
});