


function getVideo()
{
	var videoId = jQuery('form[id=videoSelect] select[id=video_select]').val();

	jQuery.ajax({
		type		: 'post',
		url			: 'http://www.lasexta.com/pokerstars/get_video/'+videoId,
		dataType	: 'html',
		success		: function( data, textStatus, XMLHttpRequest ) {
			if(data)
			{
				jQuery('div[id=player_pokerstars]').html(data);
			}
			return true;
		}
	});


}
