/**
 * @author Peter
 */
	$('document').ready(function() { 
	    $('#RecipeId').change( function () {
		var RecipeId = ($('#RecipeId').val());
		/**var url = "http://localhost/Daily/recipes/view/"+RecipeId;
		*/
		url = "http://www.dailydinner.tv/recipes/view/"+RecipeId;
		window.location.href = url;
	   });
	});