function loadmenu(sel){
//	alert("dsfdsf");

var select = document.getElementById("channel");
select.options[select.options.length] = new Option('Business','business');
select.options[select.options.length] = new Option('Comedy','comedy');
select.options[select.options.length] = new Option('Cricket','cricket');
select.options[select.options.length] = new Option('Education','education' );
select.options[select.options.length] = new Option('Entertainment','entertainment');
select.options[select.options.length] = new Option('Music','music');
select.options[select.options.length] = new Option('News & Politics','www' );
select.options[select.options.length] = new Option('Science & Technology','science');
select.options[select.options.length] = new Option('Sports','sports');
select.options[select.options.length] = new Option('Travel & Events','travel');

document.getElementById('channel').value=sel;


}
