Try this snippet ..
$form=$this->add("Form",null,null,array('form_horizontal'));
$country_field=$form->addField('dropdown','country')->setEmptyText("Select Country");
$country_field->setModel("Country");
$state_field=$form->addField('dropdown','state')->setEmptyText("Select State");
$s=$this->add("Model_State");
$form->addSubmit('Save');
if($_GET['country_selected']){
$s->addCondition('country_id',$_GET['country_selected']);
}
$student_field->setModel($s);
$country_field->js('change',$form->js()->atk4_form('reloadField','state',array($this->api->url(),'country_selected'=>$country_field->js()->val())));