// JavaScript Document
jQuery.noConflict();

// prepare the form when the DOM is ready 
jQuery(document).ready(function(){

	jQuery("select#nwlSites").change(function(){
		var id = jQuery(this).val();

		if (id.length > 0) {
			window.open(id);
			return false;
		}
	});

});
