$(document).ready(function(){
	$('#dvdSelector').change(function(){
		// get the code
		code = $(this).val();
		
		//alert(code);
		if (code != "") window.location="/videoByType.php/clips/1/"+code;
		else window.location="/videoByType.php/clips/";
	});
})