public function getWastagesUcsListAction()
 {
     $year = $this->_request->getParam('year', '');
     $month = $this->_request->getParam('month', '');
     $product = $this->_request->getParam('product', '');
     $district = $this->_request->getParam('district', '');
     $tehsil = $this->_request->getParam('tehsil', '');
     $province = $this->_request->getParam('province', '');
     $limit = $this->_request->getParam('limit', '');
     $geoModel = new Model_Geo();
     $return = $geoModel->getWastagesUcsList($year, $month, $district, $province, $tehsil, $product, $limit);
     echo Zend_Json::encode($return);
 }