// JavaScript Document

$(document).ready(function(){
    $("select[name='websites']").change(function(){
		window.open($(this).val());
	})
});
