public function selectPaymentGateway()
 {
     $data = Input::all();
     Session::flash('post_data', $data);
     $planType = Auth::user()->plan_type == PREPAID_PLAN ? 'prepaid' : 'frinternet';
     $activeGateways = OnlinePayment::getActivePaymentGateways();
     return View::make('user.select_pg')->with('activeGateways', $activeGateways)->with('planType', $planType);
 }