Hi all i have this script and I want when I click #select
tag height should be 200px and when I click next time get back 20px
$('#select').click(function(){
$('#select').toggle(
function(){
$('#select').animate({height:"200px"},200);
},
function(){
$('#select').animate({height:"20px"},200);
}
);
});