if ($kolor % 2 == 0) {
            $class = "bgcolor='#ffffff'";
        } else {
            $class = "bgcolor='#fff'";
        }
        ?>
       <tr <?php 
        print $class;
        ?>
>
       <td><?php 
        print $kolor++;
        ?>
.</td>
	   <td><?php 
        echo getCallingCategory(stripslashes($row["product_id"]));
        ?>
</td>
	   <td><?php 
        echo stripslashes($row["rqsttype"]);
        ?>
</td>
	   <td><?php 
        if ($row["id"] != 1) {
            ?>
<a href="#" onClick="if(confirm('Do you really want to delete this record?')){ window.location.href='manage_request_type.php?id=<?php 
            echo $row["id"];
            ?>
&type=del&token=<?php 
            echo $token;
            ?>
      <div class="col-md-12">
     	<div class="col-md-6">
            <div class="form-group">
                <label for="inputEmail3" class="col-sm-2 control-label">Category*</label>
                <div class="col-sm-10">
                  <select name="callingcat" id="callingcat" onChange="return ShowbyCategory();" class="form-control drop_down">
                  <option label="" value="" selected="selected">Select Category</option>
                  <?php 
$Country = mysql_query("select DISTINCT callingcategory_id from  tblassign where status_id ='1'");
while ($resultCountry = mysql_fetch_assoc($Country)) {
    ?>
                  <option value="<?php 
    echo $resultCountry['callingcategory_id'];
    ?>
" ><?php 
    echo getCallingCategory(stripslashes(ucfirst($resultCountry['callingcategory_id'])));
    ?>
</option>
              <?php 
}
?>
                </select>
                </div>
            </div>
        </div>
        <div class="col-md-6">
            <div class="form-group">
                <label for="inputEmail3" class="col-sm-2 control-label">State*</label>
                <div class="col-sm-10">
                  <select name="state" id="state" onChange="return callCity(this.value);" class="form-control drop_down" >
                  <option label="" value="" selected="selected">Select State</option>