diff --git a/application/forms/AddShowRepeats.php b/application/forms/AddShowRepeats.php
index 7744b35e9..dba0f4309 100644
--- a/application/forms/AddShowRepeats.php
+++ b/application/forms/AddShowRepeats.php
@@ -8,7 +8,8 @@ class Application_Form_AddShowRepeats extends Zend_Form_SubForm
//Add type select
$this->addElement('select', 'add_show_repeat_type', array(
'required' => true,
- 'label' => 'Repeat Type:',
+ 'label' => 'Repeat Type:',
+ 'class' => ' input_select',
'multiOptions' => array(
"0" => "weekly",
"1" => "bi-weekly",
diff --git a/public/js/airtime/schedule/full-calendar-functions.js b/public/js/airtime/schedule/full-calendar-functions.js
index 74f5cb61a..d877cca7a 100644
--- a/public/js/airtime/schedule/full-calendar-functions.js
+++ b/public/js/airtime/schedule/full-calendar-functions.js
@@ -23,13 +23,15 @@ function dayClick(date, allDay, jsEvent, view) {
function viewDisplay( view ) {
- $('.schedule_change_slots').remove();
+ var td = $('.schedule_change_slots').parent();
+ td.prev().remove();
+ td.remove();
if(view.name === 'agendaDay' || view.name === 'agendaWeek') {
var calendarEl = this;
- var select = $('')
+ var select = $('')
.append('')
.append('')
.append('')